home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / emacs / emacs1857 / bin_d2.zoo / lisp / tex-start.el < prev    next >
Lisp/Scheme  |  1991-12-02  |  467b  |  12 lines

  1. ; This file is for use by TeX82 (see man page) to allow switching to
  2. ;  Emacs at a line number given on the command line
  3. ; It assumes that it has been called by:
  4. ;    emacs -l tex-start -e startline <linenumber> <file>
  5.  
  6. (defun startline ()
  7.   ;(setq command-line-args (cdr command-line-args))
  8.   (find-file (car (cdr command-line-args-left)))
  9.   (goto-char (point-min))
  10.   (forward-line (1- (string-to-int (car command-line-args-left))))
  11.   (setq command-line-args-left ()))
  12.